COPY.RUN_SILENT Function

Syntax

C copy.run_silent(C layoutname [,C filter [,C order [,* arguments ]]])

Arguments

layoutname

The name of a previously created copy operation.

filter

Optional. Default = "". A character filter expression that evaluates to a logical value and selects records to copy.

order

Optional. Default = record order. A character order expression that sorts selected records.

arguments

*

Description

Runs a Copy operation without displaying any prompts

Discussion

The COPY.RUN_SILENT() method copies data using a previously defined copy operation, but without user interaction.

Example

The following example runs the Copy Customer operation.

copy.run("Copy Customer", "Lastname < 'Z'", "Firstname")

Limitations

Desktop applications only.

See Also